77d9376e92e5191097f02a9c2bb5337a14573227,src/org/opencms/workplace/editors/ade/CmsPublishResourceBean.java,CmsPublishResourceBean,CmsPublishResourceBean,#CmsUUID#String#String#String#String#boolean#CmsPublishResourceInfoBean#List#,121

Before Change


        m_icon = icon;
        m_id = id;
        m_name = name;
        m_related = Collections.unmodifiableList(related);
        m_state = state;
        m_title = title;
        m_removable = removable;

After Change


        m_icon = icon;
        m_id = id;
        m_name = name;
        m_related = ((related == null)
        ? Collections.<CmsPublishResourceBean> emptyList()
        : Collections.unmodifiableList(related));
        m_state = state;
        m_title = title;
        m_removable = removable;